home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / bin / mcomp < prev    next >
Encoding:
Text File  |  2008-05-29  |  140 b   |  13 lines

  1. #!/bin/sh
  2.  
  3. if [ $# -lt 2 ]; then
  4.   echo "usage: $0 dosfile [cmpoptions] unixfile"
  5.   exit 1
  6. fi
  7.  
  8. dosfile=$1
  9. shift
  10.  
  11. mcopy $dosfile - | cmp $@
  12.  
  13.